/* Local exported font files are missing in this project snapshot, so keep web-safe fallbacks. */

:root {
    --theme-dark: #035434;
    --button-color: #fff;
    --bg-gradient: radial-gradient(circle, #103023, #205846);
    --heading-color: #a27f42;
    --btn-bg-on-hover: linear-gradient(to right, #cba563, #a27f42);
}

html {
    scroll-behavior: smooth;
}

.hamburger-bg {
    background: var(--theme-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Libre Baskerville", "Times New Roman", serif;
    color: var(--heading-color);
}

.weight-100 {
    font-weight: 100 !important;
}

.font-constan {
    font-family: "Libre Baskerville", "Georgia", serif !important;
}

p {
    font-family: "Montserrat", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.grace-btn {
    background: var(--btn-bg-on-hover) !important;
}

.grace-btn:hover {
    background: var(--theme-dark) !important;
    color: #fff;
}

/* header styling starts here  */
.header {
    background: var(--bg-gradient);
    z-index: 9999;
}

.navbar-brand {
    height: 80px;
    width: auto;
    /* margin: 1rem auto; */
}

.navbar-brand img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.navbar-nav {
    font-family: "Montserrat", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 95px !important;
}

.hero-section.with-margin {
    margin-top: 95px;
}

.header-hide {
    transform: translateY(-100%);
    opacity: 0;
}

.header-show {
    transform: translateY(0);
    opacity: 1;
}
/* header styling ends here  */

/* hero section style starts here  */
.banner-div::before {
    content: "";
    position: absolute;
    top: 2vh;
    background-color: rgb(255, 128, 0);
    height: 25vh;
    width: 20vw;
    max-width: 150px;
    max-height: 180px;
    border-bottom-right-radius: 7rem;
    opacity: 0.3;
    right: 0px;
}

.banner-text {
    font-size: clamp(2.2rem, 3.4vw, 3.2rem);
    /* responsive font size */
    line-height: 1.2;
    font-family: "Libre Baskerville", "Times New Roman", serif;
    word-break: break-word;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.learn-more-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    background-color: var(--theme-dark);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
}

.learn-more-btn .arrow-icon {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    position: relative;
}

.learn-more-btn:hover .arrow-icon {
    transform: translateX(5px);
}
/* hero section style ends here  */

/* fixed button css starts here  */
.fixed-btn {
    position: fixed;
    /* or `fixed` if you want it to stay while scrolling */
    top: 40%;
    right: 20px;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    z-index: 10;
}

.fixed-btn .btn {
    border-radius: 0 0 10px 10px;
    padding: 8px 16px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.fixed-btn .fa-whatsapp {
    font-size: 1.2rem;
}
/* fixed button css ends here  */

/* about us section style starts here  */
.services-container {
    width: 300px;
    border-top-left-radius: 3rem !important;
    border-bottom-left-radius: 3rem !important;
    border-bottom-right-radius: 3rem !important;
    background: linear-gradient(135deg, #057e4e, #035434);
    color: #fff;
}

.circle-icon {
    width: 70px;
    height: 70px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* about us section style ends here  */

.marquee-container {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 30px;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: scroll-left 5s linear infinite;
    font-size: 3.5rem;
    white-space: nowrap;
    align-items: center;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-text {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    font-weight: 700;
}

.marquee-text i {
    margin-right: 1rem;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* amenities style starts here  */
.amenities-section {
    background: #f9f9f9;
    padding: 60px 0;
}

.amenity-box {
    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.amenity-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--theme-dark);
}

.amenity-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}
/* amenities style ends here  */

.location-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.location-card-body {
    padding: 0.5rem;
}

.location-number {
    width: 50px;
    height: 50px;
    background: var(--theme-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.location-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-desc {
    color: #555;
}

/* contact us styles starts here  */
/* (no custom contact styles yet) */
/* contact us styles ends here  */

/* footer styles starts here */
.footer-logo {
    height: 70px;
    width: auto;
}

.footer-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* unified footer styling */
footer {
    background: var(--bg-gradient);
    color: #ffffff;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 0;
}

footer a:hover {
    text-decoration: underline;
}

footer .fab {
    transition: transform 0.3s ease;
}

footer .fab:hover {
    transform: scale(1.2);
}

footer a[aria-label="Chat on WhatsApp"] span {
    font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

footer a[aria-label="Chat on WhatsApp"],
footer a[aria-label="Chat on WhatsApp"]:hover,
footer a[aria-label="Chat on WhatsApp"]:focus {
    text-decoration: none !important;
}

footer .row {
    margin-right: 0;
    margin-left: 0;
}
/* footer styles ends here */

/* scroll-trigger style starts here  */
#scroll-circle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
    width: 60px;
    height: 60px;
    cursor: pointer;
}

#scroll-circle svg {
    position: absolute;
    top: 0;
    left: 0;
}

#scroll-indicator {
    stroke-dasharray: 163.36;
    stroke-dashoffset: 163.36;
    transition: stroke-dashoffset 0.2s ease;
}

.scroll-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--theme-dark);
    pointer-events: none;
}
/* scroll-trigger style ends here  */

/* Responsive tweaks */
@media (max-width: 768px) {
    .banner-text {
        font-size: clamp(1.5rem, 5.2vw, 2.4rem);
        line-height: 1.3;
    }

    .learn-more-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .about-us-section {
        padding-top: 3rem !important;
    }

    .learn-more-btn {
        display: flex !important;
        margin: 0px auto !important;
    }

    .about-us-section p {
        text-align: justify !important;
    }

    .about-text {
        text-align: center !important;
    }

    .about-us-section-p,
    .about-location-p {
        text-align: justify !important;
    }

    .navbar-brand {
        display: flex;
        max-height: 100%;
        max-width: 50%;
        object-fit: contain;
    }

    .navbar-brand {
        height: 60px;
    }

    .hero-section.with-margin {
        margin-top: 78px;
    }
}

@media (max-width: 480px) {
    .banner-text {
        font-size: clamp(1.3rem, 4.8vw, 2rem);
    }

    .learn-more-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .banner-div::before {
        top: 1vh;
        width: 50vw;
        height: 20vh;
        border-bottom-right-radius: 4rem;
    }

    .footer-images {
        justify-content: center !important;
    }
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transform: translateX(-50%);
    transition: width 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: width 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
    font-size: 2rem;
}

.overlay i {
    cursor: pointer;
}

.image-wrapper:hover .overlay {
    width: 100%;
    opacity: 1;
    pointer-events: auto;
}

.footer-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.footer-images div {
    width: 100%;
    margin: 0 !important;
    overflow: hidden;
    border-radius: 10px;
}

.footer-images div img {
    height: 100px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* image modal styling starts here  */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    display: inline-block;
    background: transparent;
    padding: 0;
    border-radius: 2rem;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 100vh;
    width: auto;
    height: auto;
    border-radius: 2rem;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
/* image modal styling ends here  */

/* contact us popup form starts here  */
.overlay-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 13, 13, 0.5);
    /* Light black color */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* For Safari support */
    z-index: 1100;
}

.overlay-bg.active {
    display: block;
}

.contact-form-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 90%;
    max-width: 800px;
    height: auto;
    background: #ffffff;
    /* Solid white */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 9999;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    border-radius: 12px;
}

.contact-form-overlay.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}
/* contact us popup form ends here  */

.blurred-img {
    filter: blur(5px);
}

.artistic-text {
    position: absolute;
    bottom: 10px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-style: italic;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.artistic-text-contact-us {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-style: italic;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.artistic-text-footer {
    position: absolute;
    bottom: -6px;
    right: 0px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 10px;
    line-height: 12px;
    font-style: italic;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    left: -5px;
}

/* 🔥 IMPORTANT: remove the bottom white band under footer */
[data-scroll-container] {
    overflow: hidden;
    padding-bottom: 0;
}

.text-area {
    border-radius: 2rem;
    box-shadow: 0 0 0 2px white,
        0 0 0 2px white;
}

/* =========================
   Blog single page overrides
   Append this at the end of style.css
   ========================= */

/* Enforce two-column blog layout and keep TOC on the right on large screens */
@media (min-width: 992px) {
  /* main wrapper possibilities covered: .blog-grid-area .grid-wrap OR .row.g-4.align-start */
  .blog-grid-area .grid-wrap,
  .row.g-4.align-start,
  .grid-wrap {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 32px !important;
  }

  /* content column (left) */
  .blog-grid-area .grid-content,
  .row.g-4.align-start > .content-col,
  .grid-content,
  .content-col {
    flex: 0 0 66.6667% !important;
    max-width: 66.6667% !important;
    order: 1 !important;
    box-sizing: border-box !important;
  }

  /* sidebar column (right) */
  .blog-grid-area .grid-sidebar,
  .row.g-4.align-start > .sidebar-col,
  .grid-sidebar,
  .sidebar-col {
    flex: 0 0 33.3333% !important;
    max-width: 33.3333% !important;
    order: 2 !important;
    margin-left: auto !important;
    box-sizing: border-box !important;
  }

  /* sticky inner wrapper */
  .sidebar-sticky {
    position: sticky !important;
    top: 120px !important; /* adjust if header height changes */
    width: 100% !important;
    max-width: 360px !important;
  }

  /* ensure TOC card and trending visual */
  .toc-card, .trending-card {
    background: #fff !important;
    border-radius: 20px !important;
    padding: 18px !important;
    box-shadow: 0 12px 30px rgba(15,35,52,.06) !important;
  }

  /* keep blog body visually separated */
  .blog-detail-body {
    background: #fff !important;
    padding: 24px !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 30px rgba(15,35,52,.06) !important;
  }

  /* safety: if other rules use floats/widths, this will override */
  .blog-grid-area .grid-wrap > *,
  .row.g-4.align-start > * { box-sizing: border-box !important; }

  /* Ensure featured image doesn't overflow sidebar */
  .featured-img {
    width: 100% !important;
    height: auto !important;
    max-height: 420px !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    margin-bottom: 18px !important;
  }
}

/* Mobile: stack normally (no forcing) */
@media (max-width: 991.98px) {
  .blog-grid-area .grid-wrap,
  .row.g-4.align-start,
  .grid-wrap { display: block !important; }

  .blog-grid-area .grid-content,
  .row.g-4.align-start > .content-col,
  .blog-grid-area .grid-sidebar,
  .row.g-4.align-start > .sidebar-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    order: initial !important;
    margin-left: 0 !important;
  }

  .sidebar-sticky { position: static !important; top: auto !important; max-width: none !important; }
}

/* Extra safety for header / locomotive-scroll wrappers which sometimes set overflow hidden */
[data-scroll-container] .blog-grid-area,
.blog-grid-area { overflow: visible !important; }

/* Minor TOC list styles consistent with theme */
.toc-card h6 { color: var(--heading-color) !important; font-size: .82rem !important; text-transform: uppercase !important; letter-spacing: .12em !important; margin-bottom: 12px !important; }
.toc-list { list-style: none !important; padding-left: 0 !important; margin: 0 !important; }
.toc-list li { margin-bottom: 8px !important; }
.toc-list a { color: var(--theme-dark) !important; text-decoration: none !important; font-weight: 500 !important; }
.toc-list a:hover { text-decoration: underline !important; }

/* If any third-party CSS tries to float the sidebar, force it to the right */
.sidebar-col { float: right !important; }

/* quick helper to avoid unusual white band under footer from locomotivescroll */
[data-scroll-container] { padding-bottom: 0 !important; }

/* End of blog single overrides */

/* FORCE content column to render and prevent accidental collapse */
.content-col {
  display: block !important;
  order: 1 !important;
  flex: 0 0 66.6667% !important;
  max-width: 66.6667% !important;
  width: 66.6667% !important;
  min-height: 200px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Make sure blog card is visible (override theme hidden rules) */
.blog-detail-body {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: #ffffff !important;
  color: #0b4736 !important;       /* force readable color */
  min-height: 120px !important;
  padding-top: 18px !important;
}

/* Prevent huge empty margins pushing content off-screen */
.container, .container-fluid {
  overflow: visible !important;
}

/* Ensure sticky sidebar doesn't overlap content on wide screens */
.sidebar-col { order: 2 !important; flex: 0 0 33.3333% !important; max-width:33.3333% !important; }

